install-deps.py: add x86_64-unknown-linux-musl target
authorJorge Aparicio <japaricious@gmail.com>
Wed, 30 Mar 2016 00:38:13 +0000 (19:38 -0500)
committerJorge Aparicio <japaricious@gmail.com>
Wed, 30 Mar 2016 00:38:13 +0000 (19:38 -0500)
commitd382d6ae615a13da8296ed044179efdd2add2969
treeb980f342a080eb078750ec63b2367df6b760fdd2
parentabdc756cc17f08c5b461cef275e66820ea1654b5
install-deps.py: add x86_64-unknown-linux-musl target

This lets me build a statically linked cargo on our linux-cross Docker image with the following
commands:

$ apt-get install musl-tools # for musl-gcc, which is needed to build openssl
$ ./.travis.install.deps.sh
$ ./configure --local-rust-root=$(pwd)/rustc --enable-nightly --target=x86_64-unknown-linux-musl
$ make
$ file target/x86_64-unknown-linux-musl/release/cargo
cargo: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked (..)
src/etc/install-deps.py